home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / tags18.zip / MATCHMAK < prev    next >
Text File  |  1991-03-12  |  422b  |  27 lines

  1. #
  2. #
  3. # Makefile for match.c
  4. #
  5. # Created 01-20-91 JBK
  6. # Last Modified 02-13-91 JBK
  7. #
  8. #
  9.  
  10. CC = cl
  11.  
  12. #
  13. # This is FLAGS for optimized version
  14. #FLAGS = /c /AL /G2 /Ox /W4
  15.  
  16. # This is FLAGS for optimized version with main
  17. FLAGS = /D TEST /AL /G2 /Ox /W4
  18.  
  19. #
  20. # This is FLAGS for debugging versions with main
  21. #FLAGS = /D TEST /AL /G2 /Od /W4 /Zi /qc
  22.  
  23.  
  24. match.exe: match.c match.h
  25.     $(CC) $(FLAGS) match.c
  26.